home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / MouseInfo 1.0 / IncludeFiles.h < prev    next >
Encoding:
Text File  |  1992-04-29  |  2.3 KB  |  169 lines  |  [TEXT/MPS ]

  1. //     IncludeFiles.h 
  2. //     Copyright © 1992 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains all the needed Macintosh Toolbox and MacApp
  5. //    header files. It is suitable for a dump file for instance.
  6. //    Version Info (latest first):
  7. //
  8. //    <1>        khs        1.0        First final version
  9.  
  10.  
  11. #ifndef __INCLUDEFILES__
  12. #define __INCLUDEFILES__
  13.  
  14. #ifndef __TYPES__
  15. #include <Types.h>
  16. #endif
  17.  
  18. #ifndef __MACAPPTYPES__
  19. #include <MacAppTypes.h>
  20. #endif
  21.  
  22. #ifndef __MEMORY__
  23. #include <Memory.h>
  24. #endif
  25.  
  26. #ifndef __UOBJECT__
  27. #include <UObject.h>
  28. #endif
  29.  
  30. #ifndef __ULIST__
  31. #include <UList.h>
  32. #endif
  33.  
  34. #ifndef __APPLEEVENTS__
  35. #include <AppleEvents.h>
  36. #endif
  37.  
  38. #ifndef __PPCTOOLBOX__
  39. #include <PPCToolbox.h>
  40. #endif
  41.  
  42. #ifndef __EPPC_
  43. #include <EPPC.h>
  44. #endif
  45.  
  46. #ifndef __UEVENT__
  47. #include <UEvent.h>
  48. #endif
  49.  
  50. #ifndef __UCOMMAND__
  51. #include <UCommand.h>
  52. #endif
  53.  
  54. #ifndef __EDITIONS__
  55. #include <Editions.h>
  56. #endif
  57.  
  58. #ifndef __SCRAP__
  59. #include <Scrap.h>
  60. #endif
  61.  
  62.  
  63. #ifndef __DIALOGS__
  64. #include <Dialogs.h>
  65. #endif
  66.  
  67. #ifndef __UEVTHANDLER__
  68. #include <UEventHandler.h>
  69. #endif
  70.  
  71. #ifndef __UAPPLICATION__
  72. #include <UApplication.h>
  73. #endif
  74.  
  75. #ifndef __UDOCUMENT__
  76. #include <UDocument.h>
  77. #endif
  78.  
  79. #ifndef __BALLOONS__
  80. #include <Balloons.h>
  81. #endif
  82.  
  83. #ifndef __UVIEW__
  84. #include <UView.h>
  85. #endif
  86.  
  87. #ifndef __UWINDOW__
  88. #include <UWindow.h>
  89. #endif
  90.  
  91. #ifndef __UFAILURE__
  92. #include <UFailure.h>
  93. #endif
  94.  
  95. #ifndef __UGEOMETRY__
  96. #include <UGeometry.h>
  97. #endif
  98.  
  99. #ifndef __UMACAPPUTILITIES__
  100. #include <UMacAppUtilities.h>
  101. #endif
  102.  
  103. #ifndef __MENUS__
  104. #include <Menus.h>
  105. #endif
  106.  
  107. #ifndef __UMENUMGR__
  108. #include <UMenuMgr.h>
  109. #endif
  110.  
  111. #ifndef __UPATCH__
  112. #include <UPatch.h>
  113. #endif
  114.  
  115. #ifndef __UMACAPPGLOBALS__
  116. #include <UMacAppGlobals.h>
  117. #endif
  118.  
  119. #ifndef __UFILEBASEDDOCUMENT__
  120. #include <UFileBasedDocument.h>
  121. #endif
  122.  
  123. #ifndef __FONTS__
  124. #include <Fonts.h>
  125. #endif
  126.  
  127. #ifndef __PACKAGES__
  128. #include <Packages.h>
  129. #endif
  130.  
  131. #ifndef __TOOLUTILS__
  132. #include <ToolUtils.h>
  133. #endif
  134.  
  135. #ifndef __UERRORMGR__
  136. #include <UErrorMgr.h>
  137. #endif
  138.  
  139. #ifndef __UDIALOG__
  140. #include <UDialog.h>
  141. #endif 
  142.  
  143. #ifndef __ERRORS__
  144. #include <Errors.h>
  145. #endif
  146.  
  147. #ifndef __STDIO__
  148. #include <stdio.h>
  149. #endif
  150.  
  151. #ifndef __PLSTRINGFUNCS__
  152. #include <PLStringFuncs.h>
  153. #endif
  154.  
  155.  
  156. //    Specific files for this implementation
  157.  
  158. #ifndef __RESOURCECONSTANTS__
  159. #include "ResourceConstants.h"
  160. #endif
  161.  
  162. #ifndef __DEFINITIONS__
  163. #include "Definitions.h"
  164. #endif
  165.  
  166.  
  167. #endif __INCLUDEFILES__
  168.  
  169.